:: It is recommended to test the script on a local machine for its purpose and effects. :: ManageEngine Desktop Central will not be responsible for any :: damage/loss to the data/setup based on the behavior of the script. :: Description - Choose where you can get apps from. :: Parameters - 1 - Allow apps from anywhere :: 2 - Warn before installing apps from outside the store :: 3 - Allow apps from store only :: Configuration Type - COMPUTER :: ========================================================================================================================== @echo off IF NOT "%1"=="" ( goto %1 ) else ( echo Please read description of the script and give proper Script Argument goto ext ) :1 reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer /v AicEnabled /t REG_SZ /d "Anywhere" /f exit 0 :2 reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer /v AicEnabled /t REG_SZ /d "PreferStore" /f exit 0 :3 reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer /v AicEnabled /t REG_SZ /d "StoreOnly" /f exit 0 :ext exit 1